home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / MPW Oberon 2.1168 / OInterfaces / AEPackObject.mod < prev    next >
Encoding:
Text File  |  1995-08-10  |  1.7 KB  |  45 lines  |  [TEXT/MPS ]

  1. (*
  2.      File:        AEPackObject.mod
  3.  
  4.      Contains:    AppleEvents object packing Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Package:    Universal Interfaces 2.0 in “MPW Latest” on ETO #17
  8.  
  9.      Copyright:    © 1984-1995 by Apple Computer, Inc.
  10.                  All rights reserved.
  11.  
  12.      Bugs?:        If you find a problem with this file, use the Apple Bug Reporter
  13.                  stack.  Include the file and version information (from above)
  14.                  in the problem description and send to:
  15.                      Internet:    apple.bugs.applelink.apple.com
  16.                      AppleLink:    APPLE.BUGS
  17.  
  18. *)
  19.  
  20. (*$TAGS-*)
  21. (*$CALLING PASCAL*)
  22. MODULE AEPackObject;
  23.  
  24. IMPORT SYSTEM, Types, AppleEvents;
  25.  
  26. (* $PUSH*)
  27. (* $ALIGN MAC68K*)
  28. (* $LibExport+*)
  29.  
  30. PROCEDURE CreateOffsetDescriptor*(theOffset: LONGINT; VAR theDescriptor: AppleEvents.AEDesc): Types.OSErr;
  31.     EXTERNAL PASCAL;
  32. PROCEDURE CreateCompDescriptor*(comparisonOperator: AppleEvents.DescType; VAR operand1: AppleEvents.AEDesc; VAR operand2: AppleEvents.AEDesc; disposeInputs: BOOLEAN; VAR theDescriptor: AppleEvents.AEDesc): Types.OSErr;
  33.     EXTERNAL PASCAL;
  34. PROCEDURE CreateLogicalDescriptor*(VAR theLogicalTerms: AppleEvents.AEDescList; theLogicOperator: AppleEvents.DescType; disposeInputs: BOOLEAN; VAR theDescriptor: AppleEvents.AEDesc): Types.OSErr;
  35.     EXTERNAL PASCAL;
  36. PROCEDURE CreateObjSpecifier*(desiredClass: AppleEvents.DescType; VAR theContainer: AppleEvents.AEDesc; keyForm: AppleEvents.DescType; VAR keyData: AppleEvents.AEDesc; disposeInputs: BOOLEAN; VAR objSpecifier: AppleEvents.AEDesc): Types.OSErr;
  37.     EXTERNAL PASCAL;
  38. PROCEDURE CreateRangeDescriptor*(VAR rangeStart: AppleEvents.AEDesc; VAR rangeStop: AppleEvents.AEDesc; disposeInputs: BOOLEAN; VAR theDescriptor: AppleEvents.AEDesc): Types.OSErr;
  39.     EXTERNAL PASCAL;
  40.  
  41. (* $ALIGN RESET*)
  42. (* $POP*)
  43.  
  44.  END AEPackObject.
  45.